home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 658 b | 27 lines |
- SHELL = /bin/sh
-
- LIBVK = /usr/lib/libvk.a
-
- all:
- if [ ! -r ${LIBVK} ] ; then \
- echo ========== ; \
- echo \ \ \ \ \ \ /usr/lib/libvk.a library not installed ; \
- echo \ \ \ \ \ \ --cannot compile toolbox/src/exampleCode/viewkit dirs; \
- echo \ \ \ \ \ \ get/load the \"ViewKit _eoe & _dev\" software options . . . ; \
- echo ========== ; \
- else \
- (cd VCal ; $(MAKE) ); \
- (cd builderExamples ; $(MAKE) ); \
- (cd xcontact ; $(MAKE) ); \
- fi
-
- clean:
- cd VCal; $(MAKE) clean
- cd builderExamples; $(MAKE) clean
- cd xcontact; $(MAKE) clean
-
- clobber:
- cd VCal; $(MAKE) clobber
- cd builderExamples; $(MAKE) clobber
- cd xcontact; $(MAKE) clobber
-